From eaddfc279a62d9bb086a4ed5980d67b2304d6740 Mon Sep 17 00:00:00 2001 From: robertl Date: Sun, 19 Sep 2010 21:47:58 +0000 Subject: [PATCH] Document the UTM XCSV stuff. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@4024 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/xmldoc/chapters/styles.xml | 63 +++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/gpsbabel/xmldoc/chapters/styles.xml b/gpsbabel/xmldoc/chapters/styles.xml index 036247675..dffe821fc 100644 --- a/gpsbabel/xmldoc/chapters/styles.xml +++ b/gpsbabel/xmldoc/chapters/styles.xml @@ -762,6 +762,69 @@ examples: +
+UTM +A location in UTM has several components: a zone, a northing, and an easting. The UTM format specifier is the most common representation of these. + +example: + +IFIELD UTM, "%s" # writes 6S 519045 3984035 -the easting is first by convention. +
+ +
+UTM_EASTING +This is the decimal component representing the easting + +example: + +IFIELD UTM_EASTING, "", "%d" # outputs 519045 + +
+ +
+UTM_NORTHING + +This is the decimal component representing the northing + +example: + +IFIELD UTM_NORTHING "", "%d" # outputs 3984035 + +
+ +
+UTM_ZONE +The UTM zone. + +example: + +IFIELD UTM_ZONE "", "%d" # outputs 6 + +
+ +
+UTM_ZONEC + +The UTM Zone character. + +example: + +IFIELD UTM_ZONEC "", "%d" # outputs S + +
+ +
+ + +The full UTM zone and latitude band. + +example: + +IFIELD UTM_ZONEF "", "%d%c" # outputs 6S + +
+ +
ALT_FEET -- 2.30.2